home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 July / macformat-026.iso / mac / Shareware City / Graphics / MovieClick XObject / Read Me < prev    next >
Encoding:
Text File  |  1995-01-26  |  1.8 KB  |  57 lines  |  [ttro/ttxt]

  1. MovieClick XObject 1.0ß4
  2. Copyright 1995 Motion Works
  3.  
  4. ABOUT:
  5. ------
  6. This XObject allows Director users to incorporate interactive QuickTime™ movies created using Motion Works' MovieClick application (part of Multimedia Utilities™) into their projects.  
  7.  
  8. DISCLAIMER:
  9. -----------
  10. This XObject is a beta release and is provided as is.  Motion Works make no warranties as to the software or documentation and shall not be liable for any lost profits or damages suffered by the use of this software.  Motion Works does not provide technical support in regards to this XObject.  Inquires, questions, problems, bug reports and such should be faxed to 415-541-0555, please do not call technical support.
  11.  
  12. USAGE:
  13. ------
  14. Put this in a frame to set up the movie actor
  15.  
  16. Global IQ
  17. set IQ = IQObject(mNew)
  18.  
  19. //you should use the exact call except change the 50, 50 to whatever offset
  20. //you want and the fileName of cast X
  21. IQ(mSetUp, the stageLeft, the stageTop, 50, 50, the fileName of cast 5, the ticks)
  22.  
  23.  
  24. // the idle lets the movie work
  25.  set i = IQ(mIdle)
  26.   
  27. //i / 65536 gives the movie id that is being clicked on
  28. // i mod 65536 gives the id of the hot spot being clicked on
  29.   if i / 65536 = 1 then 
  30.     if i mod 65536 = 1 then
  31.       put "1"
  32.     else if i mod 65536 = 2 then
  33.       put "2"
  34.     else if i mod 65536 = 3 then
  35.       put "3"
  36.     else if i mod 65536 = 4 then
  37.       put "4"
  38.     else if i mod 65536 = 5 then
  39.       put "5"
  40.     end if
  41.   end if
  42.   
  43. //keep going to the same frame as the idle
  44.   go to 2
  45.  
  46. //When you want to remove the movie do this
  47. IQ(mDispose);
  48.  
  49. ADDITIONAL INFORMATION:
  50. ------------------------
  51. To purchase a copy of the Multimedia Utilities or to get additional information on  MovieClick, please contact Motion Works directly at 415-541-9333 or by email at: info@motionworks.com
  52.  
  53.  
  54. Release 1.5 INT, 1/24/95
  55. Document: COD-SUP-010
  56. Oliver Muoto
  57.